home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 144_01 / entab.hlp < prev    next >
Text File  |  1985-08-19  |  1KB  |  33 lines

  1. **********************************************************************
  2. *                             ENTAB                                  *
  3. **********************************************************************
  4. *                  COPYRIGHT 1983 EUGENE H. MALLORY                  *
  5. **********************************************************************
  6. PROGRAM:
  7.     ENTAB - Convert runs of spaces to tabs.
  8. USAGE:
  9.     ENTAB [<fid] [>fid]
  10. FUNCTION:
  11.     This copies input to output, replacing strings of spaces by 
  12.     tabs so that the result is visualy the same as the input.
  13.     Tab stops are assumed to occur every 8 characters.
  14. EXAMPLE:
  15.     ENTAB <BIGFILE >LTLFILE
  16. BUGS:
  17.     ENTAB is naive about vertical motion non-printing characters.  
  18.     ENTAB will convert a single blank to a tab if it occurs at 
  19.     a tab stop.  Thus it is not the exact inverse of DETAB.
  20.     
  21.  
  22.  
  23.  
  24.  
  25.  
  26.                     _____________________________    
  27.  Standard Input     |                           |   Standard Output
  28.      TEXT           |                           |   TEXT WITH TABS
  29. ------------------->|          ENTAB            |----------------------->
  30.                     |                           |
  31.                     |                           |
  32.                     |___________________________|
  33.